/* Homepage Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    overflow-x: hidden;
}
.content-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 60px auto;
    position: relative;
    max-width: 2000px;
    padding-left: 50px;
}

.text-content {
    flex: 1;
    margin-left: 80px;
    padding: 20px;
    position: relative;
    z-index: 6;
}

.main-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #000;
}

.image-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* gambar bpp */
.office-image {
    width: 75%;
    height: auto;
    border-radius: 50px;
    overflow: hidden;
    border: 6px solid #356203;
}

.office-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.leaf-decoration {
    position: absolute;
    z-index: 39;
    width: 440px;
    height: auto;
}

.leaf-top-left {
    top: -90px;
    left: -90px;
    transform: rotate(10deg);
}

.leaf-bottom-right {
    bottom: -120px;
    right: -120px;
    transform: rotate(-15deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/*Mobile kecil (HP lama, iPhone SE)*/
@media (min-width: 320px) and (max-width: 479px) {
    .hero {
        min-height: 40vh;

    }

    .hero-background {
        width: 100%;
        height: 90%;
    }

    .content-section {
        flex-direction: column;
        margin: 30px;
        padding: 5px;
    }

    .text-content {
        width: 100%;
        top: -50px;
        margin-left: 0;
        padding: 15px;
        text-align: justify;
    }

    .main-description {
        font-size: 1rem;
        line-height: 1.5;
        color: #000;
    }

    .image-content {
        width: 100%;
        top: -50px;
        display: flex;
        justify-content: center;
        padding: 0 15px;
    }

    .office-image {
        width: 90%;
        max-width: 300px;
        border-radius: 25px;
        border: 3px solid #356203;
        overflow: hidden;
    }

    .office-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .leaf-decoration {
        width: 200px;
        position: absolute;
        z-index: 5;
    }

    .leaf-top-left {
        top: -90px;
        left: -45px;
        transform: rotate(1deg);
    }

    .leaf-bottom-right {
        bottom: -20px;
        right: -35px;
        transform: rotate(1deg);
    }
}

/*Mobile sedang (HP modern)*/
@media (min-width: 480px) and (max-width: 677px) {
    .hero {
        min-height: 40vh;

    }

    .hero-background {
        width: 100%;
        height: 90%;
    }

    .content-section {
        flex-direction: column;
        margin: 30px;
        padding: 5px;
    }

    .text-content {
        width: 100%;
        top: -50px;
        margin-left: 0;
        padding: 15px;
        text-align: justify;
    }

    .main-description {
        font-size: 1rem;
        line-height: 1.5;
        color: #000;
    }

    .image-content {
        width: 100%;
        top: -50px;
        display: flex;
        justify-content: center;
        padding: 0 15px;
    }

    .office-image {
        width: 90%;
        max-width: 300px;
        border-radius: 25px;
        border: 3px solid #356203;
        overflow: hidden;
    }

    .office-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .leaf-decoration {
        width: 200px;
        position: absolute;
        z-index: 5;
    }

    .leaf-top-left {
        top: -90px;
        left: -45px;
        transform: rotate(1deg);
    }

    .leaf-bottom-right {
        bottom: -20px;
        right: -35px;
        transform: rotate(1deg);
    }
}

/*Tablet kecil (portrait)*/
@media (min-width: 678px) and (max-width: 730px) {
    .hero {
        min-height: 55vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        width: 60%;
        margin-left: 0;
        top: -130px;
        padding: 20px;
        text-align: left;
    }
    
    .main-description {
        font-size: 1.2rem;
        line-height: 1.7;
        color: #000;
    }
    
    .image-content {
        width: 30%;
        top: -130px;
        display: flex;
        justify-content: center;
        padding: 0 25px;
    }
    
    .office-image {
        width: 100%;
        border-radius: 35px;
        border: 4px solid #356203;
        overflow: hidden;
    }
    
    .office-image img {
        width: 150%;
        height: auto;
        object-fit: cover;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -250px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 50px;
        right: -50px;
        transform: rotate(1deg);
    }
}

/* Tablet besar (landscape) / small laptop */
@media (min-width: 731px) and (max-width: 810px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        width: 60%;
        margin-left: 0;
        top: -150px;
        padding: 25px;
        text-align: left;
    }
    
    .main-description {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #000;
    }
    
    .image-content {
        width: 40%;
        top: -150px;
        display: flex;
        justify-content: center;
        padding: 0 25px;
    }
    
    .office-image {
        width: 100%;
        border-radius: 35px;
        border: 4px solid #356203;
        overflow: hidden;
    }
    
    .office-image img {
        width: 150%;
        height: auto;
        object-fit: cover;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -250px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 70px;
        right: -50px;
        transform: rotate(1deg);
    }
}

@media (min-width: 811px) and (max-width: 899px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        width: 60%;
        margin-left: 0;
        top: -150px;
        padding: 25px;
        text-align: left;
    }
    
    .main-description {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #000;
    }
    
    .image-content {
        top: -150px;
        display: flex;
        justify-content: center;
        padding: 0 25px;
    }
    
    .office-image {
        width: 500%;
        border-radius: 35px;
        border: 4px solid #356203;
        overflow: hidden;
    }
    
    .office-image img {
        width: 150%;
        height: auto;
        object-fit: cover;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -250px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 70px;
        right: -50px;
        transform: rotate(1deg);
    }
}

@media (min-width: 900px) and (max-width: 1025px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        width: 60%;
        margin-left: 0;
        top: -150px;
        padding: 25px;
        text-align: left;
    }
    
    .main-description {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #000;
    }
    
    .image-content {
        top: -150px;
        display: flex;
        justify-content: center;
        padding: 0 25px;
    }
    
    .office-image {
        width: 200%;
        border-radius: 30px;
        border: 4px solid #356203;
        overflow: hidden;
    }
    
    .office-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -250px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 20px;
        right: -60px;
        transform: rotate(0deg);
    }
}

@media (min-width: 1026px) and (max-width: 1300px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        top: -140px;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        flex: 1;
        margin-left: 80px;
        padding: 20px;
        position: relative;
        z-index: 6;
    }
    
    .main-description {
        font-size: 1.4rem;
        line-height: 1.9;
        color: #000;
    }
    
    .image-content {
        flex: 1;
        position: relative;
        z-index: 1;
    }
    
    .office-image {
        width: 100%;
        border-radius: 50px;
        overflow: hidden;
        border: 6px solid #356203;
    }
    
    .office-image img {
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -110px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 190px;
        right: -60px;
        transform: rotate(0deg);
    }
}
@media (min-width: 1301px){
    .hero {
        min-height: 125vh;
    }
    
    .hero-background {
        width: 100%;
        height: 80%;
    }
    
    .content-section {
        flex-direction: row;
        top: -140px;
        margin: 50px;
        padding: 15px;
        align-items: center;
    }
    
    .text-content {
        flex: 1;
        margin-left: 80px;
        padding: 20px;
        position: relative;
        z-index: 6;
    }
    
    .main-description {
        font-size: 1.4rem;
        line-height: 1.9;
        color: #000;
    }
    
    .image-content {
        flex: 1;
        position: relative;
        z-index: 1;
    }
    
    .office-image {
        width: 90%;
        border-radius: 50px;
        overflow: hidden;
        border: 6px solid #356203;
    }
    
    .office-image img {
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .leaf-decoration {
        width: 300px;
        position: absolute;
        z-index: 5;
    }
    
    .leaf-top-left {
        top: -70px;
        left: -60px;
        transform: rotate(1deg);
    }
    
    .leaf-bottom-right {
        bottom: -60px;
        top: 270px;
        right: -60px;
        transform: rotate(0deg);
    }
}
